home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / artience / amateur / catalyst < prev    next >
Text File  |  1990-12-29  |  1KB  |  43 lines

  1. ! Catalyst is a program to find the catalyst for a given reaction.
  2.   Written by Jim Owen, Bartlesville, OK. !
  3.  
  4. goal (catalyst)
  5.  
  6. if reaction = hydrogenation
  7.  & feed = olefin
  8.  & desired product = paraffin
  9.  then catalyst = Pt/Al203.
  10.  
  11. if reaction = hydrogenation
  12.  & feed = acetylene
  13.  & desired product = olefin
  14.  then catalyst = Pd/Al203.
  15.  
  16. if reaction = hydrogenation
  17.  & feed = aromatic
  18.  & desired product = cycloparaffin
  19.  then catalyst = Ni/ or Pt/Al203.
  20.  
  21. if reaction = hydrogenation
  22.  & feed = aniline
  23.  & desired product = cyclohexylamine
  24.  then catalyst = Ni/ or Ru/Al203.
  25.  
  26. if reaction = hydrogenation
  27.  & feed = nitrobenzene
  28.  & desired product = aniline
  29.  then catalyst = Cu/Al203.
  30.  
  31. if reaction = dehydrogenation
  32.  & feed = paraffin
  33.  & desired product = olefin
  34.  then catalyst = Cr203/Al203.
  35.  
  36. if reaction = dehydrogenation
  37.  & feed = olefin
  38.  & desired product = conjuga diolefin
  39.  then catalyst = FeKCrOx.
  40.  
  41. prompt (reaction) = What is the reaction?
  42. prompt (feed) = What is the feed?
  43. prompt (desired product) = What is the desired product?